home *** CD-ROM | disk | FTP | other *** search
/ Kodak Picture CD: 357069 / Kodak Picture CD 357069.iso / startmac.dmg / Uninstall Software.app / Contents / Frameworks / Configure.framework / Versions / A / PrivateHeaders / ImageCapturePrefsManager.h < prev    next >
Text File  |  2004-09-23  |  1KB  |  34 lines

  1. //
  2. //  ImageCapturePrefsManager.h
  3. //  Configure
  4. //
  5. //  Created by Stan Pulchtopek on Fri Feb 15 2002.
  6. //  Copyright (c) 2002 Eastman Kodak Company. All rights reserved.
  7. //
  8.  
  9. #import <Foundation/Foundation.h>
  10.  
  11. @interface ImageCapturePrefsManager : NSObject {
  12.     NSString *_ImageCapturePrefFileIdentifier;
  13.     NSString *_ImageCaptureDeviceFileIdentifier;
  14.     NSString *_user;
  15.     NSString *_hotPlugActionPathKey;
  16.     NSString *_hotPlugActionArrayKey;
  17.     NSString *_hotPlugActionPath;
  18.     NSMutableArray *_hotPlugActionPathArray;
  19.     NSMutableArray *_cameraArray;
  20.     NSMutableArray *_syncDateAndTime_DeviceArray;
  21. }
  22.  
  23. - (id)initWithUser:(NSString *)user;
  24. - (NSString *)_ImageCapturePrefFileIdentifier;
  25. - (void)setHotPlugActionPath:(NSString *)hotPlugActionPath;
  26. - (NSString *)getHotPlugActionPath;
  27. - (void)addPathToHotPlugActionArray:(NSString *)pathToAdd;
  28. - (void)removePathFromHotPlugActionArray:(NSString *)pathToRemove;
  29. - (NSArray *)getHotPlugActionArray;
  30. - (BOOL)commitChanges;
  31. - (void)setAutoSyncDateAndTime:(NSNumber *)value;
  32.  
  33. @end
  34.